home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_02_07 / 2n07042a < prev    next >
Text File  |  1991-06-01  |  596b  |  26 lines

  1. #
  2. # Makefile for the Animated Cursor Demo Program
  3. # Written by Alex Leavens, for ShadowCat Technologies
  4. #
  5. #
  6.  
  7. comp= /c /AS /Os /Gsw /Zpe /D _WINDOWS /W2 
  8.  
  9. ALL : CURSOR.EXE
  10.  
  11. CURSOR.RES : CURSOR.RC CURSOR.H WATCH1.CUR WATCH2.CUR \
  12.              WATCH3.CUR WATCH4.CUR WATCH5.CUR WATCH6.CUR \
  13.              WATCH7.CUR WATCH8.CUR CURSOR.ICO
  14.     rc -r CURSOR.RC
  15.  
  16. CURSOR.OBJ : CURSOR.C CURSOR.H 
  17.     cl  $(comp) CURSOR.C
  18.  
  19. SUPPORT.OBJ : SUPPORT.C CURSOR.H 
  20.     cl  $(comp) SUPPORT.C
  21.  
  22. CURSOR.EXE : CURSOR.OBJ SUPPORT.OBJ CURSOR.DEF CURSOR.RES
  23.     LINK @CURSOR.LNK
  24.     rc CURSOR.RES
  25.  
  26.